How far is KG Alpensiedlung from ÖJAB-Haus?


KG Alpensiedlung is one of the most modern and therefore most popular kindergartens in the southern part of Salzburg. If we consider ÖJAB-Haus as our starting point, the minimum walking distance (line blue) is about 5.21 km, being necessary more than one hour to reach our destination.

On the other hand, if we consider a car as a means of transport we can find two potential roads. The first one (black dotted line) reaches KG Alpensiedlung after 11.31 minutes (6.12 km), while the second one (red line) reaches it in 11.37 minutes (5.72 km).

Closest glass waste containers to ÖJAB-Haus


The three closest water containers to ÖJAB-Haus Salzburg are less than 1 km 2 away (see purple lines). Reach to any of them would take less than 10 minutes walking.

Classification according to the proximity of the motorways.


Using the proximity to highways values from the map above, the kindergartens have been classified as high, medium, low, and very low risk.

Analyzing different walking time distance.


In total there are 73 kindergartens in the Salzburg district, of which 14 are Very Low, 19 Low, 21 Medium, and 19 High risks

As the graph on the left shows, kindergartens classified as High risk also have the highest number of students. This pattern could be related to the population growth that occurs, most of the time, near to important highways.

---
title: "How close are kindergardens and water containers to ÖJAB-Haus Salzburg?"
output:
  flexdashboard::flex_dashboard:
    storyboard: yes
    social: menu
    source: embed
    css: style.css
---

```{r setup, include=FALSE}
library(sf)
library(plotly)
library(ggplot2)
library(leaflet)
library(mapview)
library(htmltools)
source("functions.R")
```


### How far is **KG Alpensiedlung** from **ÖJAB-Haus**? {data-commentary-width=400}

```{r}
dirfile_ojab <- "data/OJAB/Points.shp"
dirfile_kinde <- "data/kindergarden.shp.shp"
dirfile_drive_time <- "data/01_driving_time.geojson" 
dirfile_drive_distance <- "data/01_driving_distance.geojson" 
dirfile_walk_distance <- "data/01_walking_time.geojson"
map_01(dirfile_ojab, dirfile_kinde,
       dirfile_drive_time, dirfile_drive_distance,
       dirfile_walk_distance)
```

------------------------------------------------------------------------

**KG Alpensiedlung** is one of the most modern and therefore most popular kindergartens in the southern part of Salzburg. If we consider **ÖJAB-Haus** as our starting point, the minimum walking distance (line blue) is about **5.21 km**, being necessary more than one hour to reach our destination. On the other hand, if we consider a car as a means of transport we can find two potential roads. The first one (black dotted line) reaches KG Alpensiedlung after 11.31 minutes (6.12 km), while the second one (red line) reaches it in 11.37 minutes (5.72 km).
### Closest glass waste containers to **ÖJAB-Haus** {data-commentary-width=400} ```{r} dirfile_walk_distance <- "data/water_container.shp" map_02(dirfile_ojab, dirfile_walk_distance) ``` ------------------------------------------------------------------------
The three closest water containers to **ÖJAB-Haus Salzburg** are less than **1 km 2 ** away (see purple lines). Reach to any of them would take less than 10 minutes walking.
### Classification according to the proximity of the **motorways**. {data-commentary-width=400} ```{r} ``` ------------------------------------------------------------------------
Using the _proximity to highways_ values from the map above, the kindergartens have been classified as high, medium, low, and very low risk.
### Analyzing different walking time distance. {data-commentary-width=400} ```{r echo=FALSE} map_03() ``` ------------------------------------------------------------------------
In total there are **73 kindergartens** in the Salzburg district, of which **14** are **Very Low**, **19 Low**, **21 Medium**, and **19 High** risks As the graph on the left shows, kindergartens classified as **High risk** also have the **highest number of students**. This pattern could be related to the population growth that occurs, most of the time, near to important highways.